home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- CLS
- ECHO This batch file will print the Exchequer documentation
- ECHO files XC.DOC and DISCOUNT to printer port LPT1:
- ECHO Please check that the printer is on !
- ECHO Please check that you have enough paper to print
- ECHO the entire manual (about 80 pages).
- ECHO Press any key to begin (Ctrl-Break to exit)....
- PAUSE
- CLS
- IF NOT EXIST XC.DOC GOTO :NOTFOUND
- ECHO Now printing XC.DOC...
- COPY XC.DOC LPT1:
- ECHO XC.DOC printed...
- GOTO :DISCOUNT
- :NOTFOUND
- ECHO The file XC.DOC was not found. Please check your disk....
- :DISCOUNT
- IF NOT EXIST DISCOUNT GOTO :NODISC
- ECHO Now printing DISCOUNT...
- COPY DISCOUNT LPT1:
- ECHO DISCOUNT printed...
- GOTO :END
- :NODISC
- ECHO The file DISCOUNT was not found. Please check your disk...
- :END